..
/
download
import os
import subprocess
import Npp
def main():
scriptdir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
s1kd_aspp = scriptdir + "\\bin\\s1kd-aspp.exe"
CREATE_NO_WINDOW=0x08000000
filedir = os.path.dirname(Npp.notepad.getCurrentFilename())
cwd = os.getcwd()
try:
os.chdir(filedir)
except:
pass
args = [s1kd_aspp, "-c", "-g"]
p = subprocess.Popen(
args,
shell=True,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
creationflags=CREATE_NO_WINDOW)
(out, err) = p.communicate(Npp.editor.getText())
e = p.wait()
if e == 0:
Npp.editor.setText(out)
else:
Npp.notepad.messageBox(err)
os.chdir(cwd)
main()
gopher://khzae.net/0/s1000d/s1kd-tools-npp-pythonscript/src/s1kd-tools/Applicability/Generate display text.py